Authentication Schemes

namespace Applyze.Tenant.Docs.Consumers {

Authentication Schemes

This API has two types of Authentication Scheme.

V1 Controllers has only Applyze Authentication scheme. Jwt doesn't work for V1 Controllers.

V2 Controller Supported Schemes:

  • Jwt Bearer
  • Applyze (Api-Key, User-Api-Key, App-Key)

Jwt Bearer

Bearer token is given by Tenant after a successfully login. Bearer token must be sent in Header as Authorization parameter.

curl -H 'Accept: application/json' -H "Authorization: Bearer {YOUR_TOKEN HERE}" https://mobiroller.api.applyze.com/tenant/v2/apps

Applyze

This authentication scheme does not supported by all endpoints. This is supported endpoint which only client uses like reading contents. This scheme does not have any authorization, so this authentication can make only read processes.

curl -H 'Accept: application/json' -H "Api-Key: {YOUR_APIKEY_HERE} -H "User-Api-Key: {YOUR_USERAPIKEY_HERE} -H "App-Key: {YOUR_APPKEY_HERE}" https://mobiroller.api.applyze.com/tenant/v2/apps

| Header Parameter | Description | | :---: | --- | | Api-Key | Determines Tenant. Each request must have Api-Key | | User-Api-Key | Determines which User makes request. (deprecated) (Replaced with Jwt Bearer) | | App-Key | Determines which App makes request. | }